【例子介绍】C#使用 time控件实现定时器
本实例来自《C#编程宝典》中的一例,保证是原完整源代码。主要介绍使用TIME控件实现定时器,涉及到系统时间的获取,时间设置等等,详细自己自吧,下载分是高了点,请谅解!
【相关图片】
【源码结构】
文件清单
└── Ex03_10
├── Ex03_10
│ ├── bin
│ │ └── Debug
│ │ ├── Ex03_10.exe
│ │ ├── Ex03_10.pdb
│ │ └── Ex03_10.vshost.exe
│ ├── Ex03_10.csproj
│ ├── Form1.cs
│ ├── Form1.Designer.cs
│ ├── Form1.resx
│ ├── obj
│ │ ├── Debug
│ │ │ ├── Ex03_10.csproj.GenerateResource.Cache
│ │ │ ├── Ex03_10.exe
│ │ │ ├── Ex03_10.Form1.resources
│ │ │ ├── Ex03_10.pdb
│ │ │ ├── Ex03_10.Properties.Resources.resources
│ │ │ └── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ └── Ex03_10.csproj.FileList.txt
│ ├── Program.cs
│ └── Properties
│ ├── AssemblyInfo.cs
│ ├── Resources.Designer.cs
│ ├── Resources.resx
│ ├── Settings.Designer.cs
│ └── Settings.settings
├── Ex03_10.sln
└── Ex03_10.suo
8 directories, 22 files
评论